Feature selection

What is Feature Selection

= Select a subset of all features for model training, usually in data preprocessing.

Feature Selection methods

There are some of the techniques used for feature selection in data analysis

Method Pros Cons
Intrinsic methods fast and no external selection tool is needed; provide a direction connection between feature selection and the object function model-dependent; the choice of models is limited
Filter methods simple and fast; can capture the large trends in the data tend to select redundant features; ignore relationships among features
Wrapper methods search for a wider variety of features tend to overfit; slow

Intrinsic methods

Filter methods

Wrapper methods